home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / tde11.arc / HELP.H < prev    next >
Text File  |  1991-09-06  |  3KB  |  59 lines

  1. /*
  2.  * New editor name:  tde, the Thomson-Davis Editor.
  3.  * Author:           Frank Davis
  4.  * Date:             June 5, 1991
  5.  *
  6.  * This modification of Douglas Thomson's code is released into the
  7.  * public domain, Frank Davis.  You may distribute it freely.
  8.  *
  9.  * This is the info shown in the intro and popup help screen when F1 is pressed.
  10.  */
  11.  
  12. char *credit_screen[] = {
  13. "╒═════════════════════════════════════════════════════╕",
  14. "│                                                     │",
  15. "│             tde, the Thomson-Davis Editor           │",
  16. "│                     Version 1.1                     │",
  17. "│                                                     │",
  18. "│         This program is released into the           │",
  19. "│    public domain.  You may distribute it freely.    │",
  20. "│                                                     │",
  21. "╘═════════════════════════════════════════════════════╛",
  22. NULL
  23. };
  24.  
  25.  
  26. char *help_screen[] = {
  27. "╒══════════════════════════════════════════════════════════════════════════════╕",
  28. "│                     ^ = Control    # = Shift    @ = Alt                      │",
  29. "│    Cursor Movement              Block commands            File commands      │",
  30. "│   Home  - begin of line      @B - mark box block            F2 - save        │",
  31. "│   End   - end of line        @L - mark line block           F3 - quit        │",
  32. "│   PGUP  - page up            @U - unmark block              F4 - file        │",
  33. "│   PGDN  - page down          @G - group delete block       #F2 - save as     │",
  34. "│  ^Right - word right         @M - move block               #F4 - edit file   │",
  35. "│  ^Left  - word left          @C - copy block                                 │",
  36. "│  ^Home  - top of screen      @K - kopy block             Other commands      │",
  37. "│  ^End   - bottom of screen   @O - overlay box block     ESC - undo line      │",
  38. "│  ^PGUP  - top of file        @P - print block           Del - delete char    │",
  39. "│  ^PGDN  - bottom of file     @W - write block to file   Tab - tab            │",
  40. "│  Gray - - scroll up          @E - block expand tabs     Ins - toggle insert  │",
  41. "│  Gray + - scroll down        @F - fill box block        @I  - toggle indent  │",
  42. "│  @Z     - jump (zip) to line                            @=  - dup line       │",
  43. "│                               Find/Replace commands     @-  - delete to eol  │",
  44. "│                             ^F5 - toggle search case    ^Y  - delete line    │",
  45. "│      Window Commands        #F5 - find forward          @D  - delete line    │",
  46. "│    F9  - split window       #F6 - find backward         @A  - add line       │",
  47. "│   #F9  - resize window       F5 - repeat find forward   @S  - split line     │",
  48. "│    F10 - next window         F6 - repeat find backward  @J  - join line      │",
  49. "│   #F10 - previous window    #F7 - replace forward       @T  - set tabs       │",
  50. "│   ^F10 - horizontal page 1  #F8 - replace backward      ^]  - paren balance  │",
  51. "╘══════════════════════════════════════════════════════════════════════════════╛",
  52. NULL
  53. };
  54.  
  55.  
  56.  
  57.  
  58.  
  59.